home *** CD-ROM | disk | FTP | other *** search
/ Nejlepší hry / Nejlepsi hry.iso / hry / plane arcade / planearcade.exe / tank3.bmp / debug.h < prev    next >
C/C++ Source or Header  |  2004-03-20  |  643b  |  27 lines

  1.  
  2.  
  3.  
  4. #ifndef _DEBUG_H_
  5. #define _DEBUG_H_
  6.  
  7.  
  8. //---------------------------------------------------
  9. //CUSTOMVERTEXDEBUG
  10. //---------------------------------------------------
  11. struct CUSTOMVERTEXDEBUG
  12.     D3DXVECTOR3 pos; // pozicia
  13.     DWORD    color;       // farba
  14.    
  15. };
  16.  
  17. #define D3DFVF_CUSTOMVERTEXDEBUG (D3DFVF_XYZ|D3DFVF_DIFFUSE)
  18.  
  19. //-------------------------------------------------
  20. //FUNKCIE
  21. //-------------------------------------------------
  22. void DebugDrawBox(VECTOR3D Min,VECTOR3D Max);
  23. void DebugDrawNormal(VECTOR3D Point,VECTOR3D Normal);
  24. void DebugDrawLine(VECTOR3D Point1,VECTOR3D Point2);
  25.  
  26. #endif //_DEBUG_H_